Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 353 | Author: cody
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Screen Recorder💻</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
 <h1>Screen Recorder💻</h1>   
<p>  <ul><li>Click on 'START' button to start Recording ..</li>
<li> Click on 'STOP' button to Stop Recording ..</li>
<!-- <li>Click on 'START' button to start Recording ..</li> -->
<li> Click on 'Download' button to start Downloading ..</li>
</ul>  
 

 </p>
 <br>
 <div class="left">
   <div id="startButton" class="button">
     Start
   </div>
   <h2>Preview</h2>
   <video id="preview" width="400" height="300" autoplay muted></video>
 </div>
 <div class="right">
   <div id="stopButton" class="button">
     Stop
   </div>
   <h2>Recording</h2>
   <video id="recording" width="400" height="300" controls></video>
   <a id="downloadButton" class="button">
     Download
   </a>
 </div>
 <div class="bottom">
   <pre id="log"></pre>
 </div>
 <script src="script.js"></script>
</body>
</html>